home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 1998 #6 / 1998 CD 6 (Gul).iso / 02.dir / 00687.ls < prev    next >
Encoding:
Text File  |  1996-02-08  |  426 b   |  18 lines

  1. on checkMainRollover
  2.   global gLastRolledOn
  3.   repeat with i = 1 to 12
  4.     if rollOver(i + 5) = 1 then
  5.       if gLastRolledOn = i then
  6.         exit
  7.       end if
  8.       set the castNum of sprite 20 to the number of cast ("Roll" & string(i))
  9.       set the locV of sprite 20 to 235
  10.       updateStage()
  11.       set gLastRolledOn to i
  12.       exit
  13.     end if
  14.   end repeat
  15.   set the locV of sprite 20 to 2000
  16.   set gLastRolledOn to 0
  17. end
  18.